home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Toolbox / Password / Password.make < prev    next >
Encoding:
Text File  |  1996-09-17  |  921 b   |  41 lines  |  [TEXT/CWIE]

  1. #   File:       Password.make
  2. #   Target:     Password
  3. #   Sources:    Password.c
  4. #               PasswordPPC.r
  5. #   Created:    Monday, July 1, 1996 10:29:08 AM
  6.  
  7.  
  8. MAKEFILE     = Password.make
  9. •MondoBuild• = {MAKEFILE}  # Make blank to avoid rebuilds when makefile is modified
  10. Includes     =
  11. Sym•PPC      = 
  12. ObjDir•PPC   =
  13.  
  14. PPCCOptions  = {Includes} {Sym•PPC} 
  15.  
  16. Objects•PPC  = ∂
  17.         "{ObjDir•PPC}Password.c.x"
  18.  
  19.  
  20. Password ƒƒ {•MondoBuild•} {Objects•PPC}
  21.     PPCLink ∂
  22.         -o {Targ} {Sym•PPC} ∂
  23.         {Objects•PPC} ∂
  24.         -t 'APPL' ∂
  25.         -c '????' ∂
  26.         "{SharedLibraries}InterfaceLib" ∂
  27.         "{SharedLibraries}StdCLib" ∂
  28.         "{SharedLibraries}MathLib" ∂
  29.         "{PPCLibraries}StdCRuntime.o" ∂
  30.         "{PPCLibraries}PPCCRuntime.o" ∂
  31.         "{PPCLibraries}PPCToolLibs.o"
  32.  
  33.  
  34. Password ƒƒ {•MondoBuild•} PasswordPPC.r
  35.     Rez PasswordPPC.r -o {Targ} {Includes} -append
  36.  
  37.  
  38. "{ObjDir•PPC}Password.c.x" ƒ {•MondoBuild•} Password.c
  39.     {PPCC} Password.c -o {Targ} {PPCCOptions}
  40.  
  41.